home *** CD-ROM | disk | FTP | other *** search
/ PC for Alla 2005 April / PC för Alla 0504.iso / noje / arcade-3.6.exe / tetris.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2003-11-29  |  247 b   |  14 lines

  1. stop();
  2. Stage.showMenu = false;
  3. startLevel = 1;
  4. this.onEnterFrame = function()
  5. {
  6.    sofar = this.getBytesLoaded();
  7.    total = this.getBytesTotal();
  8.    if(sofar == total)
  9.    {
  10.       delete this.onEnterFrame;
  11.       nextFrame();
  12.    }
  13. };
  14.